-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[우창완] 챕터 11: 네임스페이스 패턴 #92
base: main
Are you sure you want to change the base?
The head ref may contain hidden characters: "11/\uC6B0\uCC3D\uC644"
Conversation
토스 es-toolkit [빌드 설정 파일](https://github.com/toss/es-toolkit/blob/626af3b292fbd169f9f296d0e5edcdaa263b0f8f/rollup.config.mjs#L101)을 살펴보자. rollup을 이용하여 browser용으로 빌드할 때, `format: iife` 로 설정되어있는 것을 볼 수 있다. | ||
|
||
```js | ||
// IIFE를 설정하여, 글로벌 네임스페이스 오염을 방지한다. | ||
output: { | ||
format: 'iife', | ||
name, // "_"로 설정함. | ||
file: outFile, | ||
sourcemap, | ||
generatedCode: 'es2015', | ||
}, | ||
}; | ||
``` | ||
|
||
|
||
|
||
직접 빌드해보면, 아래 내용을 가진 browser.global.js 로 빌드된 것을 볼 수 있다. | ||
|
||
```js | ||
var _=function(t){"use strict";function at(t,e)...} | ||
``` | ||
|
||
|
||
|
||
이것을 script 형태로 사용한다면, 아래와 같이 사용할 수 있을 것이다. | ||
|
||
```html | ||
<!-- 브라우저에서 직접 <script> 태그로 사용 가능 --> | ||
<script src="browser.global.js"></script> | ||
<script> | ||
// 라이브러리가 전역 _ 변수로 노출됨 | ||
_.someFunction(); | ||
</script> | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 부분 처음 알았어요! 발표 잘 들었습니다 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 👍
모던 번들러, es module을 사용하면 네임스페이스 충돌문제를 해결하여, 크게 개발자가 신경쓰지 않아도된다. | ||
|
||
|
||
|
||
* es module 에서는 alias를 사용하여 개발할 때, 변수 충돌문제에서 어느정도 자유롭다. | ||
|
||
```js | ||
// 각 모듈은 자체 스코프를 가짐 | ||
import { something } from 'library-a'; | ||
import { something as otherthing } from 'library-b'; | ||
``` | ||
|
||
|
||
|
||
* bundling | ||
|
||
번들링 과정에서 mangling, minifier로 변수, 함수 명이 변환되고, 각 모듈들의 고유 모듈 id로 부여되어 고유의 scope를 가진다. | ||
|
||
```js | ||
// 고유 moduleId를 부여하여, namespace 변수 충돌문제를 해결한다. | ||
(function(modules) { | ||
}({ | ||
"moduleA_12345": function(module, exports) { | ||
// moduleA 코드 | ||
}, | ||
"moduleB_67890": function(module, exports) { | ||
// moduleB 코드 | ||
} | ||
})); | ||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.